LoadingFinishedEvent

data class LoadingFinishedEvent(requestId: RequestId, timestamp: MonotonicTime, encodedDataLength: Double, shouldReportCorbBlocking: Boolean?) : Event

Fired when HTTP request has finished loading.

Constructors

LoadingFinishedEvent
Link copied to clipboard
fun LoadingFinishedEvent(requestId: RequestId, timestamp: MonotonicTime, encodedDataLength: Double, shouldReportCorbBlocking: Boolean? = null)

Functions

domain
Link copied to clipboard
open override fun domain(): String
Returns domain name for which event was generated.
eventName
Link copied to clipboard
open override fun eventName(): String
Returns event name as described in protocol.

Properties

encodedDataLength
Link copied to clipboard
val encodedDataLength: Double
Total number of bytes received for this request.
requestId
Link copied to clipboard
val requestId: RequestId
Request identifier.
shouldReportCorbBlocking
Link copied to clipboard
val shouldReportCorbBlocking: Boolean? = null
Set when 1) response was blocked by Cross-Origin Read Blocking and also
  1. this needs to be reported to the DevTools console.

timestamp
Link copied to clipboard
val timestamp: MonotonicTime
Timestamp.

Sources

jvm source
Link copied to clipboard